create table "LabDepartment"("LabDepartmentId" serial primary key,"DepartmentName" text,"Description" text,"Active" bool default true,
				"CreatedBy" int references "Account"("AccountId"),"CreatedDate" timestamp without time zone,
				"ModifiedBy" int references "Account"("AccountId"),"ModifiedDate" timestamp without time zone
);